home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 0.9.1.3 stable / flock-0.9.1.3.en-US.win32.exe / flock / yahootoolbar.xpi / components / nsYahooHashtable.idl < prev    next >
Text File  |  2007-01-12  |  744b  |  20 lines

  1. #
  2. # Copyright 2005 - 2006 Yahoo! Inc. All rights reserved.
  3. #
  4.  
  5. #include "nsISupports.idl"
  6. interface nsIYahooFeedNode;
  7. [scriptable, uuid(e9725ea7-adeb-4d24-8e06-09ce973e4ad6)]
  8. interface nsIYahooHashtable : nsISupports
  9. {
  10.     void add(in string key, in nsIYahooFeedNode value);
  11.     void addString(in string key, in string value);
  12.     void clear();
  13.     nsIYahooFeedNode get(in string key);
  14.     string getString(in string key);
  15.     void getKeys(out PRUint32 count, [retval, array, size_is(count)] out string values);
  16.     void getValues(out PRUint32 count, [retval, array, size_is(count)] out nsIYahooFeedNode values);
  17.     void getStringValues(out PRUint32 count, [retval, array, size_is(count)] out string values);
  18.     PRUint32 size();
  19.     string toString();
  20. };